home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 124 / cd-rom 124.iso / edu / tuxmath / tuxmathscrabble / tuxmathscrabble.exe / asymptopia / Button.pyo (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2003-11-16  |  697 b   |  16 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.2)
  3.  
  4. import pygame
  5. import os
  6. from pygame.locals import *
  7. from myutil import *
  8.  
  9. class Button(pygame.sprite.Sprite):
  10.     
  11.     def __init__(self, fname):
  12.         pygame.sprite.Sprite.__init__(self)
  13.         (self.image, self.rect) = load_image(fname, -1)
  14.  
  15.  
  16.